home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Tools / Mac F2C 1.3.3 / Mac F2C / Mac F2C.rsrc / STR#_151.txt < prev    next >
Text File  |  1996-04-14  |  3KB  |  41 lines

  1. Uncheck to flag INTEGER*8 declarations as errors.
  2.  
  3. Check to allow INTEGER*8 declarations.  INTEGER*8 variables are translated correctly but the C code produced will only compile correctly on machines that support type ‚Äúlong long‚Äù.  This EXCLUDES the Macintosh.
  4.  
  5. Uncheck if you want INTEGER and LOGICAL variables to be treated as 4-byte objects.  This is the standard FORTRAN interpretation in that INTEGER, LOGICAL, and REAL are supposed to be the same size.
  6.  
  7. Check if you want INTEGER and LOGICAL variables to be treated as 2-byte objects.  Only variables explicitly declared INTEGER*4 will be treated as 4-byte objects.  You do not need to modify libF77 or libI77.
  8.  
  9. Uncheck to flag backslash escape sequences (e.g., \", \n, \t, etc.) as errors.
  10.  
  11. Check to allow backslash escape sequences (e.g., \", \n, \t, etc.).  F2C allows these C-style escapes in character strings for compatibility.
  12.  
  13. Uncheck to flag DOUBLE COMPLEX declarations as errors.
  14.  
  15. Check to allow DOUBLE COMPLEX declarations.  DOUBLE COMPLEX variables are translated as structure containing a pair of doublereal variables.
  16.  
  17. Uncheck to either ignore text appearing after column 72 (fixed format mode) or parse it as code (free format mode).
  18.  
  19. You cannot check this option if the ‚ÄúAssume free-format input‚Äù option is checked.
  20.  
  21. Check to flag any text appearing after column 72 as an error.  Otherwise, such text is completely ignored (fixed format mode) or parsed as code (free format mode).
  22.  
  23. Uncheck to treat lines with a tab in the first 6 columns or an ampersand in column 1 by free-format rules and all other lines by FORTRAN 77 fixed-format rules (discard text beyond column 72, columns 1 through 6 are reserved).
  24.  
  25. You cannot check this option if the ‚ÄúTreat text appearing after column 72 as an error‚Äù option is checked.
  26.  
  27. Check to always treat lines by free-format rules:  text beyond column 72 is code; an ampersand (&) in column 1 indicates a continuation line.
  28.  
  29. Uncheck to use FORTRAN's standard implicit typing rules:  variables starting with I through N are INTEGER, all others are REAL.
  30.  
  31. Check to turn off the default FORTRAN typing rules.  All variables must be explicitly declared to be used.  This is the same as IMPLICIT NONE.
  32.  
  33. Uncheck to interpret DO loops by FORTRAN 77 rules:  DO loops are not executed if the upper limit is smaller than the lower limit.
  34.  
  35. Check to interpret DO loops by FORTRAN 66 rules:  DO loops are always executed at least once, even if the upper limit is smaller than the lower limit.
  36.  
  37. Uncheck to omit run-time checks that subscripts are within declared array bounds.
  38.  
  39. Check to include run-time checks that subscripts are within declared array bounds.
  40.  
  41.